home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_100
/
161_01
/
413.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1985-08-28
|
217 b
|
13 lines
#include "timer1.h"
# define NROW 10
# define NCOLUMN 10
int a[NROW][NCOLUMN], i = 0, j = 0;
DO_STMT("expr = 5 * expr") a[i+5][j+5] = 5 * a[i+5][j+5] OD
DO_STMT("expr *= 5") a[i+5][j+5] *= 5 OD
}